home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(_root.level1._x > 30)
- {
- this._x = 700;
- }
- if(_root.level1._x < -1060)
- {
- this._x = 1000;
- this._visible = false;
- }
- else
- {
- this._visible = true;
- }
- if(_root.levmoveR)
- {
- this._x -= 3;
- }
- if(_root.levmoveL)
- {
- this._x += 3;
- }
- if(_root.jumpR)
- {
- this._x -= 6;
- }
- if(_root.jumpL)
- {
- this._x += 6;
- }
- if(_root.notarget6)
- {
- this._x -= 6;
- }
- if(this._x < 550)
- {
- _root.b6i._visible = true;
- }
- if(this._x < _root.sheep._x + 80)
- {
- _root.hitarea6 = true;
- _root.notarget6 = false;
- }
- if(this._x < _root.sheep._x)
- {
- gotoAndPlay(48);
- }
- if(this._x > _root.sheep._x + 120)
- {
- _root.hitarea6 = false;
- _root.notarget6 = true;
- }
- if(_root.hitarea6)
- {
- if(_root.hit6)
- {
- if(_root.fishjump)
- {
- _root.hit6 = false;
- _root.bot6life -= 1;
- if(_root.highkick)
- {
- _root.bot6life -= 100;
- _root.highkick = false;
- }
- gotoAndPlay(29);
- }
- }
- }
- }
-